home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / UTILITY1 / MSWSRC35.ZIP / METER / METER.DEF < prev    next >
Text File  |  1992-06-11  |  703b  |  24 lines

  1. ; Module name: Meter.DEF
  2. ; Programmer : Jeffrey M. Richter
  3.  
  4. LIBRARY     METER
  5. DESCRIPTION 'Meter Custom Control Library'
  6. EXETYPE     WINDOWS
  7. STUB        'WinStub.Exe'
  8.  
  9. ; The code segment is marked as PRELOAD FIXED NONDISCARDABLE 
  10. ; because this module is used by the Setup Application 
  11. ; presented in Chapter 8.  In a DLL, Windows allows code 
  12. ; segments to be discarded if FIXED is not specified.  This is
  13. ; why FIXED appears below.
  14. CODE        PRELOAD FIXED NONDISCARDABLE
  15. DATA        MOVEABLE PRELOAD SINGLE
  16. HEAPSIZE    1024
  17. EXPORTS  
  18.    WEP            @1    RESIDENTNAME
  19.    MeterInfo      @2
  20.    MeterStyle     @3
  21.    MeterFlags     @4
  22.    MeterWndFn     @5
  23.    MeterDlgFn     @6
  24.